home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Users Group Library 1996 July
/
C-C++ Users Group Library July 1996.iso
/
listings
/
v_11_01
/
1101094b
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1992-11-01
|
260 b
|
16 lines
// fa2.cpp - a dynamic array of float
#include "fa2.h"
#include <assert.h>
// other float_array member function definitions ...
float &float_array::operator[](size_t i) const
{
assert(i < len);
return array[i];
}
----------